home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / pm / sleep.d / 99laptop-mode next >
Encoding:
Text File  |  2009-03-30  |  366 b   |  21 lines

  1. #!/bin/sh
  2. #
  3. # 99laptop-mode: Re-apply laptop mode tools settings
  4.  
  5. case "$1" in
  6.     hibernate|suspend)
  7.         # Stopping is not required.
  8.         ;;
  9.     thaw|resume)
  10.         # Make laptop mode tools forcibly re-apply the hardware settings
  11.         # that laptop mode tools applies.            
  12.         if [ -e /usr/sbin/laptop_mode ] ; then
  13.             /usr/sbin/laptop_mode auto force
  14.         fi
  15.         ;;
  16.     *) exit $NA
  17.         ;;
  18. esac
  19.  
  20.  
  21.